Bloodrock is a minimalist software publisher whose entire catalog revolves around a single, highly focused development tool: Pkg Config Lite. Rooted in the open-source tradition hosted on SourceForge, the publisher strips the original pkg-config utility down to its essentials, replacing the customary glib dependency with a self-contained code snippet. The result is a lightweight, portable library scanner that runs on Windows without dragging in the entire GNOME stack, making it attractive to C/C++ engineers who need to query compiler and linker flags inside MSYS2, Cygwin, or native Visual Studio environments. Typical use cases include autotools-style configure scripts that probe for FFmpeg, OpenSSL, or GTK binaries, CMake toolchain files that populate PKG_CONFIG_PATH, and continuous-integration runners that must spin up dependencies in seconds. By eliminating glib, the binary footprint shrinks to a few hundred kilobytes, start-up latency drops, and the risk of DLL version conflicts vanishes, so embedded and game developers can safely ship it inside SDK installers or portable toolchains. Although the scope is narrow, the utility fills a persistent gap in Windows-oriented cross-compilation workflows, offering command-line switches identical to mainstream pkg-config so existing build recipes require no change. Bloodrock’s Pkg Config Lite is available for free on get.nero.com; the site supplies the latest build through trusted Windows package sources such as winget, enables batch installation alongside other tools, and always refreshes to the newest upstream release.
pkg-config-lite is based on pkg-config, but is built with a glib code snippet which eliminates the glib dependency, so it is possible once again to build and run pkg-config without dependencies.
Details